type runtime.arenaHint

11 uses

	runtime (current package)
		malloc.go#L552: 			hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L619: 		hint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L627: 		userArenaHint := (*arenaHint)(mheap_.arenaHintAlloc.alloc())
		malloc.go#L651: func (h *mheap) sysAlloc(n uintptr, hintList **arenaHint, arenaList *[]arenaIdx) (v unsafe.Pointer, size uintptr) {
		malloc.go#L725: 		hint := (*arenaHint)(h.arenaHintAlloc.alloc())
		malloc.go#L728: 		hint = (*arenaHint)(h.arenaHintAlloc.alloc())
		mheap.go#L165: 	arenaHints *arenaHint
		mheap.go#L238: 		arenaHints *arenaHint
		mheap.go#L340: type arenaHint struct {
		mheap.go#L344: 	next *arenaHint
		mheap.go#L806: 	h.arenaHintAlloc.init(unsafe.Sizeof(arenaHint{}), nil, nil, &memstats.other_sys)